home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Rozne / HTTrack 3.40-2 / httrack-3.40-2.exe / {app} / src / mmsrip / error.h < prev    next >
C/C++ Source or Header  |  2006-01-21  |  1KB  |  41 lines

  1. /*
  2.  * $RCSfile: error.h,v $
  3.  * $Date: 2006/01/21 20:09:57 $ - $Revision: 1.4 $
  4.  *
  5.  * This file is distributed as a part of MMSRIP ( MMS Ripper ).
  6.  * Copyright (c) 2005-2006 Nicolas BENOIT
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify it
  9.  * under the terms of the GNU General Public License as published by the
  10.  * Free Software Foundation; either version 2, or (at your option) any
  11.  * later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  *
  22.  */
  23.  
  24.  
  25. #ifndef __ERROR_H__
  26. #define __ERROR_H__
  27.  
  28. #ifdef HAVE_VSNPRINTF
  29. #include <stdarg.h>
  30.  
  31. #define ERROR_MSG_LEN 128
  32.  
  33. void warning ( const char *, const char *, ... );
  34. void error ( const char *, const char *, ... );
  35. #else
  36. void warning ( const char *, const char * );
  37. void error ( const char *, const char * );
  38. #endif
  39.  
  40. #endif
  41.